func syscall.ptrace

10 uses

	syscall (current package)
		syscall_linux.go#L907: 		err = ptrace(pokeReq, pid, addr-addr%sizeofPtr, word)
		syscall_linux.go#L917: 		err = ptrace(pokeReq, pid, addr+uintptr(n), word)
		syscall_linux.go#L934: 		err = ptrace(pokeReq, pid, addr+uintptr(n), word)
		syscall_linux.go#L971: 	return ptrace(PTRACE_SETOPTIONS, pid, 0, uintptr(options))
		syscall_linux.go#L982: 	return ptrace(PTRACE_CONT, pid, 0, uintptr(signal))
		syscall_linux.go#L986: 	return ptrace(PTRACE_SYSCALL, pid, 0, uintptr(signal))
		syscall_linux.go#L989: func PtraceSingleStep(pid int) (err error) { return ptrace(PTRACE_SINGLESTEP, pid, 0, 0) }
		syscall_linux.go#L991: func PtraceAttach(pid int) (err error) { return ptrace(PTRACE_ATTACH, pid, 0, 0) }
		syscall_linux.go#L993: func PtraceDetach(pid int) (err error) { return ptrace(PTRACE_DETACH, pid, 0, 0) }
		zsyscall_linux_amd64.go#L218: func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) {